home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / NPP.PAK / HISTORY.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  691b  |  26 lines

  1. // history.h : interface of the CHistoryList class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. //
  13.  
  14. class CHistoryList : public CStringList
  15. // Operations
  16. public:
  17.     void FillCombobox();
  18.     BOOL AddString(CString &s1);
  19.  
  20. // Implementation
  21. protected:
  22.     void SwapStrings(CWnd* pWnd, CString &s1);
  23. };
  24.  
  25.